home *** CD-ROM | disk | FTP | other *** search
/ All About the French Know-How at E3 2000 (USA) / All About the French Know-How at E3 2000 (USA).bin / Data / 15008 / TheoBr01.cab / _2E499544000B11D48F08965B7DEAC134 < prev    next >
Text File  |  2000-03-20  |  41KB  |  1,431 lines

  1. <HTML>
  2. <HEAD>
  3. <META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
  4. <TITLE></TITLE>
  5. <link REL="stylesheet" TYPE="text/css" HREF="Style%20Sheet1.css">
  6. <script ID="clientEventHandlersJS" LANGUAGE="javascript">
  7. <!--
  8.  
  9. var scoreQuiz ;
  10. var IndexQuestion ;
  11.  
  12.  
  13. var TexteReponse ;
  14. var Tableaujuste = new Array(0,1,2,1,1,1,1,2,0,1,0,0) ;
  15.  
  16. var TabCommentaires = new Array("Il attend lÆautomne et descend sur une feuille !",
  17.                                 "Tout le monde sait quÆil y a quatre places dans un 2CV, deux devant et deux derriΦre !",
  18.                                 "Ils ont garΘ leur 2 CV devant la maison !",
  19.                                 "La rΘponse habituelle est six, mais on peut y arriver en ouvrant les cinq maillons dÆune seule chaεne puis en rΘunissant les cinq chaεnes restantes en une seule.",
  20.                                 "Si nous donnons cinq perles α tout le monde, les hommes sans armes auront leur part et il restera six perles que se partageront les hommes armΘs. Ceux-ci sont donc au nombre de six.",
  21.                                 "Si x reprΘsente lÆΓge de lÆΓne, nous avons :   x + 4 = 3(x-4)       x = 8" ,
  22.                                 "Si lÆΓne Θtait noir, les trois suppositions seraient fausses. SÆil Θtait brun, les trois suppositions seraient correctes. LÆΓne est donc gris û les deux premiΦres suppositions sont justes et la troisiΦme fausse.",
  23.                                 "Bat le fer pendant quÆil est chaud. CÆest α dire, saisir les opportunitΘs lorsquÆelles se prΘsentent α vous.",
  24.                                 "DÆaprΦs la premiΦre affirmation, Jules ne peut Ωtre le plus vieux, et dÆaprΦs la seconde, Jean est le plus jeune. Ensuite, et toujours selon la premiΦre affirmation, puisque Jean nÆest pas le plus vieux, cÆest Jacques, puis vient Jean puis Jules qui est le plus jeune.",
  25.                                 "Comme Jacques et Jules se contredisent, lÆun des deux a menti (et pas lÆautre). Comme il y avait deux menteurs, Jean doit forcement Ωtre le second : cÆest donc lui qui a volΘ lÆΓne. ",
  26.                                 "Si Jules avait volΘ le cheval, ce quÆil a dit serait faux. Comme on sait que le voleur a dit la vΘritΘ, Jules nÆest pas coupable. Si Jean Θtait le voleur, tous les trois auraient dit la vΘritΘ, ce qui est impossible puisque lÆon sait que lÆun dÆeux a menti. CÆest donc Jacques qui dit la vΘritΘ et qui a volΘ le cheval.");
  27.                                 
  28.  
  29. var TabContexts = new Array("quizfr1","quizfr2","quizfr3","quizfr4","quizfr5","quizfr6",
  30.                             "quizfr7","quizfr9","quizfr10","quizfr10","quizfr12");
  31. function InitQuizz()
  32. {
  33.     scoreQuiz = 0 ;
  34.     IndexQuestion = 0  ;
  35.     QuizzGB1.style.display = "none" ;
  36.     NextQuestion.style.display = "none" ;
  37.     aide.style.display = "block" ;
  38.     
  39. }
  40.  
  41. function window_onload() 
  42. {
  43.     //au dΘmarrage on affiche le texte d'aide .
  44.     
  45.     
  46.     InitQuizz() ;    
  47. }
  48.  
  49.  
  50. function start_onclick()
  51. {
  52.     
  53.  
  54.     
  55.     var collradio = document.all.item("radiobutton");
  56.     for(i = 0; i< collradio.length ; i++)
  57.     {
  58.         collradio[i].checked = false ;
  59.     }
  60.     var TexteQuestion = document.all.item("QuizzGB1") ;
  61.     var TexteAide = document.all.item("aide") ;
  62.     TexteAide.style.display = "none" ;
  63.     var collQuestion = QuizzGB1.all.item("question") ;
  64.     
  65.     // une seule question α la fois
  66.     for( i = 0 ; i < collQuestion.length ; i++)
  67.     {
  68.         if( IndexQuestion == i )
  69.             collQuestion[i].style.display = "block" ;
  70.         else
  71.             collQuestion[i].style.display = "none" ;
  72.     }
  73.     // On affiche la question
  74.     TexteQuestion.style.display = "block" ;
  75.     
  76.  
  77. function verifie_reponse(Index)
  78. {
  79.     
  80.     var IsAnswer = false ;
  81.     var TheAnswer ;
  82.     var collforms ;
  83.     var indexchoix ; // la rΘponse choisie par l'utilisateur
  84.     var collQuestion = QuizzGB1.all.item("question") ;
  85.     var collreponses = NextQuestion.all.item("reponse") ;
  86.     var collchoix ; // la collection des rΘponses
  87.     var radio ; // la collection des boutons
  88.     collform = collQuestion[IndexQuestion].all.item("form") ;
  89.     radio = collform.item("radiobutton") ;
  90.     collchoix = collreponses[IndexQuestion].all.item("choix");
  91.     for( i = 0; i < radio.length ; i ++ )
  92.     {
  93.         if( radio[i].checked == true )
  94.         {    
  95.         
  96.             IsAnswer = true ;
  97.             TheAnswer = i ;
  98.             collchoix[i].style.display = "block" ;
  99.         }
  100.         else
  101.             collchoix[i].style.display = "none" ;
  102.     }
  103.     
  104.     if( IsAnswer == false )
  105.     {
  106.         alert("Vous devez donner une rΘponse!") ;
  107.         return ;
  108.     }
  109.     // on affiche la rΘponse
  110.     QuizzGB1.style.display = "none" ;
  111.     NextQuestion.style.display = "block" ;
  112.     collreponses[IndexQuestion].style.display = "block" ;
  113.     
  114.     //rΘponse juste ?
  115.     if( TheAnswer == Tableaujuste[IndexQuestion] )
  116.     {
  117.         
  118.         scoreQuiz++ ;
  119.     }
  120.     // on affiche le commentaire
  121.     var Localscore = comments.all.item("lescore") ;
  122.     Localscore.innerText = "SCORE :" + scoreQuiz ;
  123.     var LocalComment = comments.all.item("lecommentaire") ;
  124.     LocalComment.innerText = TabCommentaires[IndexQuestion] ;
  125.     comments.style.display = "block" ;    
  126. }
  127.  
  128. function Next_onclick()
  129. {
  130.     var collreponses = NextQuestion.all.item("reponse") ;
  131.     var collchoix = collreponses[IndexQuestion].all.item("choix");
  132.     for ( i = 0 ; i < collchoix.length ; i++)
  133.         collchoix[i].style.display = "none" ;
  134.     IndexQuestion ++ ;
  135.     if(IndexQuestion >= 11)
  136.     {
  137.         NextQuestion.style.display = "none" ;
  138.         QuizzGB1.style.display = "none" ;
  139.         comments.style.display = "none" ;
  140.         Fin.style.display = "block" ;
  141.         return ;
  142.     }
  143.     NextQuestion.style.display = "none" ;
  144.     comments.style.display = "none" ;
  145.     start_onclick() ;
  146.     return ;
  147. }
  148.  
  149. function End_onclick()
  150. {
  151.     NextQuestion.style.display = "none" ;
  152.     QuizzGB1.style.display = "none" ;
  153.     comments.style.display = "none" ;
  154.     Fin.style.display = "none" ;
  155.     aide.style.display = "block";
  156.     
  157. }        
  158. var thistext ="";
  159. var thisinfo = "" ;
  160. var staticCouleur = "";
  161. var staticLettre = "" ;
  162. var staticNombre= "";
  163.  
  164. function fermer_onclick() {
  165. var Obj;
  166. var strName ;
  167. var strCtl ;
  168. for( i = 0; i< document.all.length; i++)
  169. {
  170.     Obj = document.all(i) ;
  171.     strName = Obj.id ;
  172.     if( strName != "undefined" )
  173.     strCtl = strName.substr(0,4) ;
  174.     if( strCtl == "info" || strCtl == "cont" )
  175.     {
  176.         Obj.style.display = "none" ;
  177.     }
  178. }
  179. }
  180.  
  181. function aggrandir_onclick() {
  182. var Obj;
  183. var strName ;
  184. var strCtl ;
  185. for( i = 0; i< document.all.length; i++)
  186. {
  187.     Obj = document.all(i) ;
  188.     strName = Obj.id ;
  189.     if( strName != "undefined" )
  190.     strCtl = strName.substr(0,4) ;
  191.     if( strCtl == "info")
  192.     {    
  193.         if( Obj.style.display == "block" )
  194.         {    
  195.             thisinfo = strName ;
  196.             Obj.style.display = "none" ;
  197.             Obj.className = "grosseinfo" ;
  198.             
  199.         }
  200.         Obj.style.display = "none" ;
  201.     }
  202.     if( strCtl == "cont")
  203.         Obj.style.display = "none" ;
  204.     if( strCtl == "text")
  205.     {
  206.         
  207.             thistext = strName ;
  208.             Obj.style.display = "none" ;
  209.         
  210.         
  211.     }
  212.                     
  213. }
  214. document.all.item(thisinfo).style.display = "block" ;
  215. controleg.style.display = "block" ;
  216. }
  217.  
  218. function rapetisser_onclick() {
  219. var Obj;
  220. var strName ;
  221. var strCtl ;
  222. for( i = 0; i< document.all.length; i++)
  223. {
  224.     Obj = document.all(i) ;
  225.     strName = Obj.id ;
  226.     if( strName != "undefined" )
  227.     strCtl = strName.substr(0,4) ;
  228.     if( strCtl == "info")
  229.     {    
  230.         if( Obj.style.display == "block" )
  231.         {    
  232.             thisinfo = strName ;
  233.             Obj.style.display = "none" ;
  234.             Obj.className = "infotext" ;
  235.             
  236.         }
  237.         Obj.style.display = "none" ;
  238.     }
  239.     if( strCtl == "cont")
  240.         Obj.style.display = "none" ;
  241.     
  242.                     
  243. }
  244. document.all.item(thisinfo).style.display = "block" ;
  245. document.all.item(thistext).style.display = "block" ;
  246. controle.style.display = "block" ;
  247.  
  248. }
  249.  
  250. function fermerg_onclick() {
  251. var Obj;
  252. var strName ;
  253. var strCtl ;
  254. for( i = 0; i< document.all.length; i++)
  255. {
  256.     Obj = document.all(i) ;
  257.     strName = Obj.id ;
  258.     if( strName != "undefined" )
  259.     strCtl = strName.substr(0,4) ;
  260.     if( strCtl == "info"  )
  261.     {
  262.         Obj.className = "infotext" ;
  263.         Obj.style.display = "none" ;
  264.     }
  265.     if( strCtl == "cont"  )
  266.     {
  267.         Obj.style.display = "none" ;
  268.     }
  269. }
  270. document.all.item(thistext).style.display = "block" ;
  271. }
  272.  
  273.  
  274.  
  275.  
  276. //-->
  277. </script>
  278.  
  279. </HEAD>
  280. <body background="images/pourfairequoi.gif"
  281.  style="BACKGROUND-REPEAT: no-repeat"
  282.   LANGUAGE="javascript"
  283.   onload="return window_onload()" >
  284.  
  285.  
  286.  
  287. <img 
  288.      src="images/dummylogo.gif" WIDTH="139" HEIGHT="85" 
  289.       onclick="location.href='defaultNM.htm'"
  290.       style="CURSOR: hand ; POSITION: absolute; LEFT : 620px; TOP : 490px"> 
  291.       
  292.       
  293.       
  294.  
  295.  
  296. <table ALIGN="left" BORDER="0" class="tab1" LANGUAGE="javascript" id="table1">
  297.   <tr>
  298.     <td BACKGROUND="images/boutonrecvoc1ro.gif" height="70" 
  299.     onclick="location.href='pageprinNM.htm'" style="BACKGROUND-REPEAT: no-repeat; CURSOR: hand" onmouseover="IMG1.style.visibility = 'hidden'" onmouseout="IMG1.style.visibility='visible'">
  300.         <a style="TEXTDECORATION: none" href="pageprinNM.htm">
  301.         <img src="images/boutonrecvoc1.gif" border="0" id="IMG1" WIDTH="130" HEIGHT="64"></a>
  302.     </td>
  303.   </tr>
  304.   <tr>
  305.     <td>
  306.         <img src="images/boutonfq1sel.gif" border="0" id="IMG2" WIDTH="130" HEIGHT="56"> 
  307.         
  308.     </td>
  309.   </tr>
  310.   <tr>
  311.     <td BACKGROUND="images/boutonqui1ro.gif" onclick="location.href='quiNM.htm'" style="BACKGROUND-REPEAT:  no-repeat; CURSOR: hand" onmouseover="IMG3.style.visibility = 'hidden'" onmouseout="IMG3.style.visibility='visible'">
  312.     <a style="TEXTDECORATION: none" href="quiNM.htm">
  313.         <img src="images/boutonqui1.gif" border="0" id="IMG3" WIDTH="130" HEIGHT="55"></a>    
  314.     </td>
  315.   </tr>
  316.   <tr>
  317.     <td BACKGROUND="images/boutoncontact1ro.gif" onclick="location.href='contacteNM.htm'" style="BACKGROUND-REPEAT: no-repeat; CURSOR: hand" onmouseover="IMG4.style.visibility = 'hidden'" onmouseout="IMG4.style.visibility='visible'">
  318.     <a style="TEXTDECORATION: none" href="contacteNM.htm">
  319.         <img src="images/boutoncontact1.gif" border="0" id="IMG4" WIDTH="130" HEIGHT="54"></a>    
  320.     </td>
  321.   </tr>
  322.   <tr>
  323.     <td BACKGROUND="images/boutonaide1ro.gif" onclick="location.href='aideNM.htm'" style="BACKGROUND-REPEAT:  no-repeat; CURSOR: hand" onmouseover="IMG5.style.visibility = 'hidden'" onmouseout="IMG5.style.visibility='visible'">
  324.     <a style="TEXTDECORATION: none" href="aideNM.htm">
  325.         <img src="images/boutonaide1.gif" border="0" id="IMG5" WIDTH="130" HEIGHT="56"></a>    
  326.     </td>
  327.   </tr>
  328. </table> 
  329.  
  330. <div id="table2" class="tab2" LANGUAGE="javascript">
  331.  
  332. <table WIDTH="100" ALIGN="left" BORDER="0" cellspacing="10" CELLPADDING="1">
  333.   <tr>
  334.     <td LANGUAGE="javascript" 
  335.         class="nav1" onmouseover="this.bgColor = '#FFA500' " 
  336.         onmouseout="this.bgColor = '#FFFFFF' " 
  337.         onclick="location.href='nouvelleNM.htm'" 
  338.         style="CURSOR: hand">Navigation</td>
  339.   </tr>
  340.   <tr>
  341.     <td LANGUAGE="javascript" 
  342.         class="nav1" 
  343.         onmouseover="this.bgColor = '#FFA500' " 
  344.         onmouseout="this.bgColor = '#FFFFFF' " 
  345.         onclick="location.href='nouvelle1NM.htm'" 
  346.         style="CURSOR: hand">
  347.         Recherche de donnΘes 
  348.     </td>
  349.   </tr>
  350.   
  351.   <tr>
  352.   <td class="nav1" style="COLOR: orange" bgcolor="blue">Les jeux </td>
  353.   </tr>
  354.   <tr>
  355.     <td LANGUAGE="javascript" 
  356.         class="nav1" 
  357.         onmouseover="this.bgColor = '#FFA500' " 
  358.         onmouseout="this.bgColor = '#FFFFFF' " 
  359.         onclick="location.href='nouvelle3NM.htm'" 
  360.         style="CURSOR: hand">Formation </td>
  361.   </tr>
  362. </table> 
  363. </div>
  364.  
  365. <img id="aide1" class="aidepic" src="images/aidepic.gif" WIDTH="271" HEIGHT="207"> 
  366. <div id="controle" class="infocontrole" style="DISPLAY: none">
  367.     <table>
  368.     
  369.     <tr>
  370.         <td id="aggrandir" LANGUAGE="javascript" onclick="return aggrandir_onclick()">
  371.             <img src="images/aggrandir.gif" style="BORDER-BOTTOM: black solid 2px; BORDER-LEFT: black solid 2px; BORDER-RIGHT: black solid 2px; BORDER-TOP: black solid 2px" WIDTH="40" HEIGHT="40"> 
  372.         </td>
  373.         <td id="fermer" LANGUAGE="javascript" onclick="return fermer_onclick()">
  374.             <img src="images/fermer.gif" style="BORDER-BOTTOM: black solid 2px; BORDER-LEFT: black solid 2px; BORDER-RIGHT: black solid 2px; BORDER-TOP: black solid 2px" WIDTH="40" HEIGHT="40"> 
  375.         </td></tr>
  376.     </table>
  377. </div>
  378.  
  379. <div id="controleg" class="infocontroleg" style="DISPLAY: none">
  380.     <table>
  381.     
  382.     <tr>
  383.         <td id="rapetisser" LANGUAGE="javascript" onclick="return rapetisser_onclick()">
  384.             <img src="images/rapetisser.gif" style="BORDER-BOTTOM: black solid 2px; BORDER-LEFT: black solid 2px; BORDER-RIGHT: black solid 2px; BORDER-TOP: black solid 2px" WIDTH="40" HEIGHT="40"> 
  385.         </td>
  386.         <td id="fermerg" LANGUAGE="javascript" onclick="return fermerg_onclick()">
  387.             <img src="images/fermer.gif" style="BORDER-BOTTOM: black solid 2px; BORDER-LEFT: black solid 2px; BORDER-RIGHT: black solid 2px; BORDER-TOP: black solid 2px" WIDTH="40" HEIGHT="40"> 
  388.         </td></tr>
  389.     </table>
  390. </div>
  391.  
  392.  
  393. <!*********************************************************************************
  394. ************************************************************************************
  395.                             Aide 
  396. ************************************************************************************
  397. ***********************************************************************************->
  398. <div id="aide" 
  399. name = "aide" 
  400. language="javascript"
  401. class="defaulttext"
  402. style = "DISPLAY : none">
  403.  
  404. <span>
  405. Bienvenue α ThΘoQuiz numΘro un !<p></p>
  406.  
  407. Pour jouer, lisez la question puis dites la rΘponse en parlant clairement dans le micro devant vous.
  408. Si vous changez dÆavis, dites une autre rΘponse puis <span class="liencom">OK</span> ou <span class="liencom">Valider</span>.
  409.  Attendez que le commentaire α votre rΘponse sÆaffiche.
  410. Pour passer α la question suivante, dites <span class="liencom">Suivant</span> ou <span class="liencom">Continuer</span>.<p></p>
  411.  
  412. A la fin du quiz, dites <span class="liencom">Fin</span> pour arrΩter le jeu ou <span class="liencom">Recommencer</span> si vous voulez jouer de nouveau.
  413. <p></p>
  414. Si vous voulez quitter le jeu, dites<span class="liencom"> Fin </span>ou <span class="liencom">Quitter</span>.
  415.  
  416. <p></p>
  417. ⌐ ThΘorom Productions, fΘvrier 2000.
  418. Remerciements α Raymond Smullyan pour inspiration dans son livre ½ Les Θnigmes de ShΘhΘrazade ╗ ΘditΘ chez Flammarion.
  419.  
  420. </span>
  421. <p></p>
  422.  
  423. <button
  424. name="start" 
  425. id="start"
  426. language ="javascript" 
  427. value="Start game" 
  428. onclick="return start_onclick()">
  429. DΘmarrer le jeu
  430. </button> 
  431. </div>
  432.  
  433.  
  434. <div id=QuizzGB1 class ="defaulttext" style="DISPLAY : none">
  435. <!*********************************************************************************
  436. ************************************************************************************
  437.                             Question 1
  438. ************************************************************************************
  439. ***********************************************************************************->
  440. <span id="question" name="question" style="DISPLAY : none" >
  441. <H1>
  442. Question 1
  443. </H1> 
  444. <p></p>
  445. <H3>
  446. Que fait un ΘlΘphant quand il est coincΘ dans un arbre ? 
  447. </H3>
  448. <FORM action="" method=POST id="form" name="form"><TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=1>
  449.  
  450.     <TR>
  451.         <TD>
  452.             <div align="center"> 
  453.             <input type="radio" name="radiobutton" value="radiobutton">
  454.             </div>
  455.         </TD>
  456.         <TD>
  457.             <div align="left">
  458.             Il attend lÆautomne et descend sur une feuille !
  459.             </div>
  460.         </TD>
  461.     </TR>
  462.     <TR>
  463.         <TD>
  464.             <div align="center"> 
  465.             <input type="radio" name="radiobutton" value="radiobutton">
  466.             </div>
  467.             </TD>
  468.         <TD>
  469.         <div align="left">
  470.             Il se sert de son tΘlΘphone portable pour appeler les secours !
  471.             </div>
  472.         </TD>
  473.     </TR>
  474.     <TR>
  475.         <TD colspan="2" align="center" >
  476.         <input type="button" value="Valider" 
  477.         onclick="verifie_reponse(1);" name="button">
  478.         </TD>
  479.         
  480.     </TR>
  481. </TABLE>
  482. </FORM>
  483. </span>
  484.  
  485.  
  486. <!*********************************************************************************
  487. ************************************************************************************
  488.                             Question 2
  489. ************************************************************************************
  490. ***********************************************************************************->
  491. <span id="question" name="question" style="DISPLAY : none" >
  492. <H1>
  493. Question 2
  494. </H1> 
  495. <p></p>
  496. <H3>
  497. Combien dÆΘlΘphants peut-on mettre dans une 2 CV ?
  498. </H3>
  499. <FORM action="" method=POST id="form" name="form"><TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=1>
  500.  
  501.     <TR>
  502.         <TD>
  503.             <div align="center"> 
  504.             <input type="radio" name="radiobutton" value="radiobutton">
  505.             </div>
  506.         </TD>
  507.         <TD>
  508.             <div align="left">
  509.             Aucun
  510.             </div>
  511.         </TD>
  512.     </TR>
  513.     <TR>
  514.         <TD>
  515.             <div align="center"> 
  516.             <input type="radio" name="radiobutton" value="radiobutton">
  517.             </div>
  518.             </TD>
  519.         <TD>
  520.         <div align="left">
  521.             Quatre 
  522.             </div>
  523.         </TD>
  524.     </TR>
  525.     <TR>
  526.         <TD>
  527.             <div align="center"> 
  528.             <input type="radio" name="radiobutton" value="radiobutton">
  529.             </div>
  530.             </TD>
  531.         <TD>
  532.         <div align="left">
  533.             Deux 
  534.             </div>
  535.         </TD>
  536.     </TR>
  537.     <TR>
  538.         <TD colspan="2" align="center" >
  539.         <input type="button" value="Valider" 
  540.         onClick="verifie_reponse(2);" name="button">
  541.         </TD>
  542.         
  543.     </TR>
  544. </TABLE>
  545. </FORM>
  546. </span>
  547.  
  548. <!*********************************************************************************
  549. ************************************************************************************
  550.                             Question 3
  551. ************************************************************************************
  552. ***********************************************************************************->
  553.  
  554. <span id="question" name="question" style="DISPLAY : none" >
  555. <H1>
  556. Question 3
  557. </H1> 
  558. <p></p>
  559. <H3>
  560. Comment savoir quand quatre ΘlΘphants ont ΘtΘ dans le frigidaire ?  
  561. </H3>
  562. <FORM action="" method=POST id="form" name="form"><TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=1>
  563.  
  564.     <TR>
  565.         <TD>
  566.             <div align="center"> 
  567.             <input type="radio" name="radiobutton" value="radiobutton">
  568.             </div>
  569.         </TD>
  570.         <TD>
  571.             <div align="left">
  572.             Il y a des traces de pied dans le beurre.
  573.             </div>
  574.         </TD>
  575.     </TR>
  576.     <TR>
  577.         <TD>
  578.             <div align="center"> 
  579.             <input type="radio" name="radiobutton" value="radiobutton">
  580.             </div>
  581.             </TD>
  582.         <TD>
  583.         <div align="left">
  584.             Le frigo est cassΘ.
  585.             </div>
  586.         </TD>
  587.     </TR>
  588.     <TR>
  589.         <TD>
  590.             <div align="center"> 
  591.             <input type="radio" name="radiobutton" value="radiobutton">
  592.             </div>
  593.             </TD>
  594.         <TD>
  595.         <div align="left">
  596.             Ils ont garΘ leur 2 CV devant la maison.
  597.             </div>
  598.         </TD>
  599.     </TR>
  600.     <TR>
  601.         <TD colspan="2" align="center" >
  602.         <input type="button" value="Valider" 
  603.         onClick="verifie_reponse(3);" name="button">
  604.         </TD>
  605.         
  606.     </TR>
  607. </TABLE>
  608. </FORM>
  609. </span>
  610. <!*********************************************************************************
  611. ************************************************************************************
  612.                             Question 4
  613. ************************************************************************************
  614. ***********************************************************************************->
  615. <span id="question" name="question" style="DISPLAY : none" >
  616. <H1>
  617. Question 4
  618. </H1> 
  619. <p></p>
  620. <H3>
  621. Un client souhaite transformer six chaεnes avec cinq maillons en une seule chaεne. Le joaillier lui dit : pour chaque maillon que jÆouvrirai et refermerai, il vous en co√tera une piΦce dÆargent.
  622. Combien de piΦces dÆargent faut-il payer ?
  623.  
  624. </H3>
  625. <FORM action="" method=POST id="form" name="form"><TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=1>
  626.  
  627.     <TR>
  628.         <TD>
  629.             <div align="center"> 
  630.             <input type="radio" name="radiobutton" value="radiobutton">
  631.             </div>
  632.         </TD>
  633.         <TD>
  634.             <div align="left">
  635.             Cinq piΦces dÆargent.
  636.             </div>
  637.         </TD>
  638.     </TR>
  639.     <TR>
  640.         <TD>
  641.             <div align="center"> 
  642.             <input type="radio" name="radiobutton" value="radiobutton">
  643.             </div>
  644.             </TD>
  645.         <TD>
  646.         <div align="left">
  647.             Six piΦces dÆargent.
  648.             </div>
  649.         </TD>
  650.     </TR>
  651.     <TR>
  652.         <TD>
  653.             <div align="center"> 
  654.             <input type="radio" name="radiobutton" value="radiobutton">
  655.             </div>
  656.             </TD>
  657.         <TD>
  658.         <div align="left">
  659.             Douze piΦces dÆargent.
  660.             </div>
  661.         </TD>
  662.     </TR>
  663.     <TR>
  664.         <TD colspan="2" align="center" >
  665.         <input type="button" value="Valider" 
  666.         onClick="verifie_reponse(4);" name="button">
  667.         </TD>
  668.         
  669.     </TR>
  670. </TABLE>
  671. </FORM>
  672. </span>
  673. <!*********************************************************************************
  674. ************************************************************************************
  675.                             Question 5
  676. ************************************************************************************
  677. ***********************************************************************************->
  678. <span id="question" name="question" style="DISPLAY : none" >
  679. <H1>
  680. Question 5
  681. </H1> 
  682. <p></p>
  683. <H3>
  684.  
  685.  
  686. Dix brigands volΦrent un sac de cinquante six perles. 
  687. Au moment du partage, chacun des voleurs armΘs reτut six perles 
  688. tandis que chacun des voleurs non-armΘs reτut cinq. 
  689. Combien de ces voleurs Θtaient-ils armΘs ?
  690.  
  691.  
  692.   
  693. </H3>
  694. <FORM action="" method=POST id="form" name="form"><TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=1>
  695.  
  696.     <TR>
  697.         <TD>
  698.             <div align="center"> 
  699.             <input type="radio" name="radiobutton" value="radiobutton">
  700.             </div>
  701.         </TD>
  702.         <TD>
  703.             <div align="left">
  704.             Cinq voleurs. 
  705.             </div>
  706.         </TD>
  707.     </TR>
  708.     <TR>
  709.         <TD>
  710.             <div align="center"> 
  711.             <input type="radio" name="radiobutton" value="radiobutton">
  712.             </div>
  713.             </TD>
  714.         <TD>
  715.         <div align="left">
  716.             Six voleurs. 
  717.             </div>
  718.         </TD>
  719.     </TR>
  720.     
  721.     <TR>
  722.         <TD colspan="2" align="center" >
  723.         <input type="button" value="Valider" 
  724.         onClick="verifie_reponse(5);" name="button">
  725.         </TD>
  726.         
  727.     </TR>
  728. </TABLE>
  729. </FORM>
  730. </span>
  731. <!*********************************************************************************
  732. ************************************************************************************
  733.                             Question 6
  734. ************************************************************************************
  735. ***********************************************************************************->
  736. <span id="question" name="question" style="DISPLAY : none" >
  737. <H1>
  738. Question 6
  739. </H1> 
  740. <p></p>
  741. <H3>
  742. Un fermier avait un Γne. Un jour, on lui demande lÆΓge de son Γne. Il rΘpondit : dans quatre ans, il sera trois fois plus ΓgΘ quÆil ne lÆΘtait il y a quatre ans. 
  743. Quel est donc lÆΓge de lÆΓne ?
  744.  
  745.  
  746. </H3>
  747. <FORM action="" method=POST id="form" name="form"><TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=1>
  748.  
  749.     <TR>
  750.         <TD>
  751.             <div align="center"> 
  752.             <input type="radio" name="radiobutton" value="radiobutton">
  753.             </div>
  754.         </TD>
  755.         <TD>
  756.             <div align="left">
  757.             Douze ans.
  758.             </div>
  759.         </TD>
  760.     </TR>
  761.     <TR>
  762.         <TD>
  763.             <div align="center"> 
  764.             <input type="radio" name="radiobutton" value="radiobutton">
  765.             </div>
  766.             </TD>
  767.         <TD>
  768.         <div align="left">
  769.             Huit ans.
  770.             </div>
  771.         </TD>
  772.     </TR>
  773.     <TR>
  774.         <TD>
  775.             <div align="center"> 
  776.             <input type="radio" name="radiobutton" value="radiobutton">
  777.             </div>
  778.             </TD>
  779.         <TD>
  780.         <div align="left">
  781.             Seize ans. 
  782.             </div>
  783.         </TD>
  784.     </TR>
  785.     <TR>
  786.         <TD colspan="2" align="center" >
  787.         <input type="button" value="Valider" 
  788.         onClick="verifie_reponse(6);" name="button">
  789.         </TD>
  790.         
  791.     </TR>
  792. </TABLE>
  793. </FORM>
  794. </span>
  795. <!*********************************************************************************
  796. ************************************************************************************
  797.                             Question 7
  798. ************************************************************************************
  799. ***********************************************************************************->
  800. <span id="question" name="question" style="DISPLAY : none" >
  801. <H1>
  802. Question 7
  803. </H1> 
  804. <p></p>
  805. <H3>
  806. Un jour, le fermier demanda α trois personnes de deviner la couleur de son Γne.
  807. Jean dit : je parie quÆil nÆest pas noir.
  808. Jacques dit : je parie quÆil est brun ou gris.
  809. Jules dit : je parie quÆil est brun.
  810. Le fermier rΘpondit : il se trouve quÆau moins lÆun de vous a trouvΘ la rΘponse et quÆau moins lÆun de vous sÆest trompΘ.
  811. Quelle est donc la couleur de lÆΓne ?
  812.  
  813.  
  814.  
  815. </H3>
  816. <FORM action="" method=POST id="form" name="form"><TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=1>
  817.  
  818.     <TR>
  819.         <TD>
  820.             <div align="center"> 
  821.             <input type="radio" name="radiobutton" value="radiobutton">
  822.             </div>
  823.         </TD>
  824.         <TD>
  825.             <div align="left">
  826.             Noir.
  827.             </div>
  828.         </TD>
  829.     </TR>
  830.     <TR>
  831.         <TD>
  832.             <div align="center"> 
  833.             <input type="radio" name="radiobutton" value="radiobutton">
  834.             </div>
  835.             </TD>
  836.         <TD>
  837.         <div align="left">
  838.             Gris.
  839.             </div>
  840.         </TD>
  841.     </TR>
  842.     <TR>
  843.         <TD>
  844.             <div align="center"> 
  845.             <input type="radio" name="radiobutton" value="radiobutton">
  846.             </div>
  847.             </TD>
  848.         <TD>
  849.         <div align="left">
  850.             Brun. 
  851.             </div>
  852.         </TD>
  853.     </TR>
  854.     <TR>
  855.         <TD colspan="2" align="center" >
  856.         <input type="button" value="Valider" 
  857.         onClick="verifie_reponse(7);" name="button">
  858.         </TD>
  859.         
  860.     </TR>
  861. </TABLE>
  862. </FORM>
  863. </span>
  864.  
  865.  
  866. <!*********************************************************************************
  867. ************************************************************************************
  868.                             Question 8
  869. ************************************************************************************
  870. ***********************************************************************************->
  871. <span id="question" name="question" style="DISPLAY : none" >
  872. <H1>
  873. Question 8
  874. </H1> 
  875. <p></p>
  876. <H3>
  877. ComplΘtez cette expression.
  878. Bat le fer pendant...
  879.  
  880.  
  881.  
  882. </H3>
  883. <FORM action="" method=POST id="form" name="form"><TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=1>
  884.  
  885.     <TR>
  886.         <TD>
  887.             <div align="center"> 
  888.             <input type="radio" name="radiobutton" value="radiobutton">
  889.             </div>
  890.         </TD>
  891.         <TD>
  892.             <div align="left">
  893.             Qu'il est chaud.
  894.             </div>
  895.         </TD>
  896.     </TR>
  897.     <TR>
  898.         <TD>
  899.             <div align="center"> 
  900.             <input type="radio" name="radiobutton" value="radiobutton">
  901.             </div>
  902.             </TD>
  903.         <TD>
  904.         <div align="left">
  905.             Qu'il est froid.
  906.             </div>
  907.         </TD>
  908.     </TR>
  909.     <TR>
  910.         <TD>
  911.             <div align="center"> 
  912.             <input type="radio" name="radiobutton" value="radiobutton">
  913.             </div>
  914.             </TD>
  915.         <TD>
  916.         <div align="left">
  917.             In July.
  918.             </div>
  919.         </TD>
  920.     </TR>
  921.     <TR>
  922.         <TD colspan="2" align="center" >
  923.         <input type="button" value="Valider" 
  924.         onClick="verifie_reponse(9);" name="button">
  925.         </TD>
  926.         
  927.     </TR>
  928. </TABLE>
  929. </FORM>
  930. </span>
  931. <!*********************************************************************************
  932. ************************************************************************************
  933.                             Question 9
  934. ************************************************************************************
  935. ***********************************************************************************->
  936. <span id="question" name="question" style="DISPLAY : none" >
  937. <H1>
  938. Question 9
  939. </H1> 
  940. <p></p>
  941. <H3>
  942. Jean, Jacques et Jules Θtaient de bons amis. 
  943. Le plus vieux des trois se trouve Ωtre soit Jean soit Jacques. 
  944. Ou bien Jules est le plus vieux ou bien Jules est le plus jeune. 
  945. Qui est le plus vieux ?
  946.  
  947. </H3>
  948. <FORM action="" method=POST id="form" name="form"><TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=1>
  949.  
  950.     <TR>
  951.         <TD>
  952.             <div align="center"> 
  953.             <input type="radio" name="radiobutton" value="radiobutton">
  954.             </div>
  955.         </TD>
  956.         <TD>
  957.             <div align="left">
  958.             Jean
  959.             </div>
  960.         </TD>
  961.     </TR>
  962.     <TR>
  963.         <TD>
  964.             <div align="center"> 
  965.             <input type="radio" name="radiobutton" value="radiobutton">
  966.             </div>
  967.             </TD>
  968.         <TD>
  969.         <div align="left">
  970.             Jacques
  971.             </div>
  972.         </TD>
  973.     </TR>
  974.     <TR>
  975.         <TD>
  976.             <div align="center"> 
  977.             <input type="radio" name="radiobutton" value="radiobutton">
  978.             </div>
  979.             </TD>
  980.         <TD>
  981.         <div align="left">
  982.             Jules
  983.             </div>
  984.         </TD>
  985.     </TR>
  986.     <TR>
  987.         <TD colspan="2" align="center" >
  988.         <input type="button" value="Valider" 
  989.         onClick="verifie_reponse(10);" name="button">
  990.         </TD>
  991.         
  992.     </TR>
  993. </TABLE>
  994. </FORM>
  995. </span>
  996. <!*********************************************************************************
  997. ************************************************************************************
  998.                             Question 10
  999. ************************************************************************************
  1000. ***********************************************************************************->
  1001. <span id="question" name="question" style="DISPLAY : none" >
  1002. <H1>
  1003. Question 10
  1004. </H1> 
  1005. <p></p>
  1006. <H3>
  1007. Un jour, quelquÆun vola lÆΓne du fermier. Jean, Jacques et Jules sont accusΘs. Au procΦs, voici ce quÆils disent.
  1008. Jean : Je ne lÆai pas volΘ.
  1009. Jacques : Ce nÆest certainement pas Jules.
  1010. Jules : Si, cÆest moi.
  1011. Par la suite, deux dÆentre eux confessΦrent avoir menti. Qui a volΘ lÆΓne ?
  1012.  
  1013.  
  1014. </H3>
  1015. <FORM action="" method=POST id="form" name="form"><TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=1>
  1016.  
  1017.     <TR>
  1018.         <TD>
  1019.             <div align="center"> 
  1020.             <input type="radio" name="radiobutton" value="radiobutton">
  1021.             </div>
  1022.         </TD>
  1023.         <TD>
  1024.             <div align="left">
  1025.             Jean
  1026.             </div>
  1027.         </TD>
  1028.     </TR>
  1029.     <TR>
  1030.         <TD>
  1031.             <div align="center"> 
  1032.             <input type="radio" name="radiobutton" value="radiobutton">
  1033.             </div>
  1034.             </TD>
  1035.         <TD>
  1036.         <div align="left">
  1037.             Jacques
  1038.             </div>
  1039.         </TD>
  1040.     </TR>
  1041.     <TR>
  1042.         <TD>
  1043.             <div align="center"> 
  1044.             <input type="radio" name="radiobutton" value="radiobutton">
  1045.             </div>
  1046.             </TD>
  1047.         <TD>
  1048.         <div align="left">
  1049.             Jules
  1050.             </div>
  1051.         </TD>
  1052.     </TR>
  1053.     <TR>
  1054.         <TD colspan="2" align="center" >
  1055.         <input type="button" value="Valider" 
  1056.         onClick="verifie_reponse(11);" name="button">
  1057.         </TD>
  1058.         
  1059.     </TR>
  1060. </TABLE>
  1061. </FORM>
  1062. </span>
  1063. <!*********************************************************************************
  1064. ************************************************************************************
  1065.                             Question 11
  1066. ************************************************************************************
  1067. ***********************************************************************************->
  1068. <span id="question" name="question" style="DISPLAY : none" >
  1069. <H1>
  1070. Question 11
  1071. </H1> 
  1072. <p></p>
  1073. <H3>
  1074. Le lendemain, cÆΘtait au tour du cheval α disparaεtre et Jean, Jaques et Jules sont de nouveaux accusΘs. Au procΦs ils disent :
  1075. Jacques : Jules ne lÆa pas volΘ.<br>
  1076. Jules : CÆest vrai.<br>
  1077. Jean : Jacques est innocent.<br>
  1078. Cette fois-ci, le vrai coupable avait dit la vΘritΘ mais tous nÆen avaient pas fait autant. Qui Θtait le coupable ?
  1079.  
  1080.  
  1081.  
  1082. </H3>
  1083. <FORM action="" method=POST id="form" name="form"><TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=1>
  1084.  
  1085.     <TR>
  1086.         <TD>
  1087.             <div align="center"> 
  1088.             <input type="radio" name="radiobutton" value="radiobutton">
  1089.             </div>
  1090.         </TD>
  1091.         <TD>
  1092.             <div align="left">
  1093.             Jacques
  1094.             </div>
  1095.         </TD>
  1096.     </TR>
  1097.     <TR>
  1098.         <TD>
  1099.             <div align="center"> 
  1100.             <input type="radio" name="radiobutton" value="radiobutton">
  1101.             </div>
  1102.             </TD>
  1103.         <TD>
  1104.         <div align="left">
  1105.             Jules
  1106.             </div>
  1107.         </TD>
  1108.     </TR>
  1109.     <TR>
  1110.         <TD>
  1111.             <div align="center"> 
  1112.             <input type="radio" name="radiobutton" value="radiobutton">
  1113.             </div>
  1114.             </TD>
  1115.         <TD>
  1116.         <div align="left">
  1117.             Jean
  1118.             </div>
  1119.         </TD>
  1120.     </TR>
  1121.     <TR>
  1122.         <TD colspan="2" align="center" >
  1123.         <input type="button" value="Valider" 
  1124.         onClick="verifie_reponse(12);" name="button">
  1125.         </TD>
  1126.         
  1127.     </TR>
  1128. </TABLE>
  1129. </FORM>
  1130. </span>
  1131. </div>
  1132.  
  1133. <div id="NextQuestion" 
  1134. class="defaulttext"
  1135. name="NextQuestion"
  1136. style="DISPLAY: none">
  1137. <!*********************************************************************************
  1138. ************************************************************************************
  1139.                             rΘponse 1
  1140. ************************************************************************************
  1141. ***********************************************************************************->
  1142. <div id="reponse" name = "reponse" style = "DISPLAY : none">
  1143. <span id="choix" name = "choix" style = "DISPLAY : none ; FONT-SIZE : 48 pt">
  1144. Oui!
  1145. </span>
  1146.  
  1147. <span id="choix" name = "choix" style = "DISPLAY : none; FONT-SIZE : 36 pt">
  1148. Non, bien que tous les ΘlΘphants sÆen servent maintenant. 
  1149. </span>
  1150.  
  1151. </div>
  1152.  
  1153. <!*********************************************************************************
  1154. ************************************************************************************
  1155.                             rΘponse 2
  1156. ************************************************************************************
  1157. ***********************************************************************************->
  1158. <div id="reponse" name = "reponse" style = "DISPLAY : none">
  1159. <span id="choix" name = "choix" style = "DISPLAY : none; FONT-SIZE : 48 pt">
  1160. Non!
  1161. </span>
  1162.  
  1163. <span id="choix" name = "choix" style = "DISPLAY : none; FONT-SIZE : 48 pt">
  1164. Oui! 
  1165. </span>
  1166.  
  1167. <span id="choix" name = "choix" style = "DISPLAY : none; FONT-SIZE : 36 pt">
  1168. Non, il y a encore de la place pour deux de plus!  
  1169. </span>
  1170. </div>
  1171.  
  1172. <!*********************************************************************************
  1173. ************************************************************************************
  1174.                             rΘponse 3
  1175. ************************************************************************************
  1176. ***********************************************************************************->
  1177. <div id="reponse" name = "reponse" style = "DISPLAY : none">
  1178. <span id="choix" name = "choix" style = "DISPLAY : none ; FONT-SIZE : 36 pt">
  1179. Tout α fait probable, mais regardez devant la maison!   
  1180. </span>
  1181.  
  1182. <span id="choix" name = "choix" style = "DISPLAY : none; FONT-SIZE : 30 pt">
  1183. CÆest bien possible vu le poids de quatre ΘlΘphants mais ce nÆest pas la rΘponse.   
  1184. </span>
  1185.  
  1186. <span id="choix" name = "choix" style = "DISPLAY : none; FONT-SIZE : 48 pt">
  1187. Oui! 
  1188. </span>
  1189. </div>
  1190.  
  1191. <!*********************************************************************************
  1192. ************************************************************************************
  1193.                             rΘponse 4
  1194. ************************************************************************************
  1195. ***********************************************************************************->
  1196. <div id="reponse" name = "reponse" style = "DISPLAY : none">
  1197. <span id="choix" name = "choix" style = "DISPLAY : none; FONT-SIZE : 48 pt">
  1198. C'est une possibilitΘ.  
  1199. </span>
  1200.  
  1201. <span id="choix" name = "choix" style = "DISPLAY : none; FONT-SIZE : 48 pt">
  1202. Oui!  
  1203. </span>
  1204.  
  1205. <span id="choix" name = "choix" style = "DISPLAY : none; FONT-SIZE : 48 pt">
  1206. Non.La rΘponse est six. 
  1207. </span>
  1208. </div>
  1209.  
  1210. <!*********************************************************************************
  1211. ************************************************************************************
  1212.                             rΘponse 5
  1213. ************************************************************************************
  1214. ***********************************************************************************->
  1215. <div id="reponse" name = "reponse" style = "DISPLAY : none">
  1216. <span id="choix" name = "choix" style = "DISPLAY : none; FONT-SIZE : 48 pt">
  1217. Non! 
  1218. </span>
  1219.  
  1220. <span id="choix" name = "choix" style = "DISPLAY : none; FONT-SIZE : 48 pt">
  1221. Oui!  
  1222. </span>
  1223. </div>
  1224.  
  1225. <!*********************************************************************************
  1226. ************************************************************************************
  1227.                             rΘponse 6
  1228. ************************************************************************************
  1229. ***********************************************************************************->
  1230. <div id="reponse" name = "reponse" style = "DISPLAY : none">
  1231. <span id="choix" name = "choix" style = "DISPLAY : none; FONT-SIZE : 48 pt">
  1232. Non! 
  1233. </span>
  1234.  
  1235. <span id="choix" name = "choix" style = "DISPLAY : none; FONT-SIZE : 48 pt">
  1236. Oui!  
  1237. </span>
  1238.  
  1239. <span id="choix" name = "choix" style = "DISPLAY : none; FONT-SIZE : 48 pt">
  1240. Non!
  1241. </span>
  1242.  
  1243. </div>
  1244.  
  1245. <!*********************************************************************************
  1246. ************************************************************************************
  1247.                             rΘponse 7
  1248. ************************************************************************************
  1249. ***********************************************************************************->
  1250. <div id="reponse" name = "reponse" style = "DISPLAY : none">
  1251. <span id="choix" name = "choix" style = "DISPLAY : none; FONT-SIZE : 48 pt">
  1252. Non! 
  1253. </span>
  1254.  
  1255. <span id="choix" name = "choix" style = "DISPLAY : none; FONT-SIZE : 48 pt">
  1256. Oui! 
  1257. </span>
  1258.  
  1259. <span id="choix" name = "choix" style = "DISPLAY : none; FONT-SIZE : 48 pt">
  1260. Non! 
  1261. </span>
  1262.  
  1263. </div>
  1264.  
  1265.  
  1266.  
  1267. <!*********************************************************************************
  1268. ************************************************************************************
  1269.                             rΘponse 8
  1270. ************************************************************************************
  1271. ***********************************************************************************->
  1272. <div id="reponse" name = "reponse" style = "DISPLAY : none">
  1273. <span id="choix" name = "choix" style = "DISPLAY : none; FONT-SIZE : 48 pt">
  1274. Oui!   
  1275. </span>
  1276.  
  1277. <span id="choix" name = "choix" style = "DISPLAY : none; FONT-SIZE : 48 pt">
  1278. Non!  
  1279. </span>
  1280.  
  1281.  
  1282. </div>
  1283.  
  1284.  
  1285. <!*********************************************************************************
  1286. ************************************************************************************
  1287.                             rΘponse 9
  1288. ************************************************************************************
  1289. ***********************************************************************************->
  1290. <div id="reponse" name = "reponse" style = "DISPLAY : none">
  1291.  
  1292.     <span id="choix" name = "choix" style = "DISPLAY : none; FONT-SIZE : 48 pt">
  1293.     Non, il est le plus jeune.    
  1294.     </span>
  1295.  
  1296.     <span id="choix" name = "choix" style = "DISPLAY : none; FONT-SIZE : 48 pt">
  1297.     Oui! 
  1298.     </span>
  1299.  
  1300.     <span id="choix" name = "choix" style = "DISPLAY : none; FONT-SIZE : 48 pt">
  1301.     Non, il est au milieu.   
  1302.     </span>
  1303.     
  1304. </div>
  1305.  
  1306. <!*********************************************************************************
  1307. ************************************************************************************
  1308.                             rΘponse 10
  1309. ************************************************************************************
  1310. ***********************************************************************************->
  1311. <div id="reponse" name = "reponse" style = "DISPLAY : none">
  1312.  
  1313.     <span id="choix" name = "choix" style = "DISPLAY : none; FONT-SIZE : 48 pt">
  1314.     Oui!    
  1315.     </span>
  1316.  
  1317.     <span id="choix" name = "choix" style = "DISPLAY : none; FONT-SIZE : 48 pt">
  1318.     Non! 
  1319.     </span>
  1320.  
  1321.     <span id="choix" name = "choix" style = "DISPLAY : none; FONT-SIZE : 48 pt">
  1322.     Non!  
  1323.     </span>
  1324.  
  1325.  
  1326. </div>
  1327.  
  1328. <!*********************************************************************************
  1329. ************************************************************************************
  1330.                             rΘponse 11
  1331. ************************************************************************************
  1332. ***********************************************************************************->
  1333. <div id="reponse" name = "reponse" style = "DISPLAY : none">
  1334.  
  1335.  
  1336.     <span id="choix" name = "choix" style = "DISPLAY : none; FONT-SIZE : 48 pt">
  1337.     Oui!    
  1338.     </span>
  1339.  
  1340.     <span id="choix" name = "choix" style = "DISPLAY : none; FONT-SIZE :30 pt">
  1341.     Non. Il a bien menti mais ce nÆest pas lui qui a volΘ le cheval.   
  1342.     </span>
  1343.  
  1344.     <span id="choix" name = "choix" style = "DISPLAY : none; FONT-SIZE : 36 pt">
  1345.     Non, mΩme sÆil a menti, il nÆest pas coupable.    
  1346.     </span>
  1347.  
  1348.  
  1349. </div>
  1350.  
  1351. <span >
  1352.     <center>
  1353.     <button id="Next" 
  1354.     language="javascript" 
  1355.     name = "Next" 
  1356.     value="Next Question" 
  1357.     onclick ="return Next_onclick()" >
  1358.     Continuer
  1359.     </button>
  1360.     </center>
  1361. </span>
  1362.  
  1363. </div>
  1364.  
  1365.  
  1366. <!*********************************************************************************
  1367. ************************************************************************************
  1368.                             Les commentaires
  1369. ************************************************************************************
  1370. ***********************************************************************************->
  1371.  
  1372. <DIV id="comments" name="comments" class="infotext">
  1373.     <center>
  1374.     <span id="lescore" name="lescore"  >
  1375.     
  1376.     </span>
  1377.     </center>
  1378.     <span id="lecommentaire" name="lecommentaire">
  1379.     
  1380.     </span>
  1381.  
  1382. </DIV>
  1383.  
  1384.  
  1385. <!*********************************************************************************
  1386. ************************************************************************************
  1387.                             La fin
  1388. ************************************************************************************
  1389. ***********************************************************************************->
  1390. <DIV id="Fin" name="Fin" class="defaulttext" style="DISPLAY : none">
  1391.     
  1392. Bravo. You have finished your first Theo game. What do you want to do now ?
  1393. <button id="end" name ="end" onclick="return End_onclick()">Quitter </button>   <button id="again" name"again"
  1394.  onclick="InitQuizz();start_onclick(); ">Recommencer</button>
  1395.  
  1396. </DIV>
  1397.  
  1398. <span id="CommandesP" language="javascript" class="liencom" 
  1399.          ondblclick="fermer_onclick()" onclick="return CommandesP_onclick()">
  1400. <div id="info1" class="infotext" style="DISPLAY: none; FONT-SIZE: 9pt" ondblclick="fermer_onclick()"> 
  1401. la reconnaissance vocale <br>
  1402. pour faire quoi <br>
  1403. pourquoi faire <br>
  1404. qui sommes nous <br>
  1405. contactez nous <br>
  1406. aide <br>
  1407. accueil<br>
  1408. nos partenaires <br>
  1409. agenda <br>
  1410. en savoir plus<br>
  1411. la navigation <br>
  1412. les jeux <br>
  1413. la formation<br>
  1414. la recherche des donnΘes<br>
  1415. prΘcΘdent<br>
  1416. Θcran prΘcΘdent<br> 
  1417. retour<br>
  1418. suivant<br>Θcran suivant<br>
  1419. avance<br>
  1420. partenaires<br>
  1421. accueil <br>
  1422. commandes 
  1423. possibles <br>
  1424. quitter <br>
  1425. fermer <br>
  1426. anglais <br>
  1427. </div>  
  1428. </BODY>
  1429. </HTML>
  1430.